home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 1462 / form1.frm next >
Text File  |  1997-04-28  |  1KB  |  50 lines

  1. VERSION 5.00
  2. Object = "{2459C0E3-BDB0-11D0-86B4-444553540000}#1.0#0"; "PCTONE.OCX"
  3. Begin VB.Form Form1 
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   3195
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   4680
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   3195
  11.    ScaleWidth      =   4680
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin VB.CommandButton Command1 
  14.       Caption         =   "Two Tone Beep"
  15.       Height          =   975
  16.       Left            =   1440
  17.       TabIndex        =   0
  18.       Top             =   840
  19.       Width           =   1815
  20.    End
  21.    Begin PCTONELib.PCTone PCTone1 
  22.       Left            =   600
  23.       Top             =   2040
  24.       _Version        =   65536
  25.       _ExtentX        =   847
  26.       _ExtentY        =   847
  27.       _StockProps     =   64
  28.    End
  29. End
  30. Attribute VB_Name = "Form1"
  31. Attribute VB_GlobalNameSpace = False
  32. Attribute VB_Creatable = False
  33. Attribute VB_PredeclaredId = True
  34. Attribute VB_Exposed = False
  35. Option Explicit
  36.  
  37. Private Sub Command1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  38. Dim freq%
  39.  
  40. For freq% = 1000 To 3000 Step 1000
  41.     PCTone1.Beep freq%, 50
  42.  
  43.     While PCTone1.Wait = False
  44.         DoEvents
  45.     Wend
  46. Next
  47.  
  48. End Sub
  49.  
  50.